home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2002 #12 / Amiga Plus CD - 2002 - No. 12.iso / Tools / Freeware / PerfectPaint / rexx / Border / Script&Picture / b1_1.brx next >
Encoding:
Text File  |  2002-10-15  |  464 b   |  42 lines

  1. /* Ellipse Border */
  2.  
  3.     options results
  4.     parse ARG Port b
  5.     
  6.     ADDRESS value Port
  7.  
  8.     pp_Progresstext 'Border'
  9.  
  10.     pp_GetWidth
  11.     W=result
  12.     pp_GetHeight
  13.     H=result
  14.     pp_ClosestColor 255 255 255
  15.     White=result
  16.     pp_ClosestColor 0 0 0
  17.     Black=result
  18.  
  19.     pp_StencilOff
  20.     pp_EffectOff
  21.     pp_SpareOnOff
  22.     pp_ComposeReqOff
  23.     pp_Compose 0 100 0
  24.     pp_SetApen Black
  25.     pp_SetBpen White
  26.     pp_Cls
  27.  
  28.     pp_PenType 2
  29.     pp_PenSize 8
  30.     pp_Box 10 10 W-10 H-10
  31.  
  32.     pp_SparetoStencil
  33.     pp_InvStencil
  34.  
  35.  
  36.     EXIT
  37.     
  38.  
  39.  
  40.     
  41.  
  42.